mysql: add more supported types#6479
Open
dtunikov wants to merge 2 commits into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
1 Skipped Deployment
|
serprex
reviewed
Jul 2, 2026
Comment on lines
+20
to
+23
| | TinyInt | Int8 | Supports unsigned. Compatibility alias: `Int1`.| | ||
| | SmallInt | Int16 | Supports unsigned. Compatibility alias: `Int2`.| | ||
| | MediumInt, Int | Int32 | Supports unsigned. Synonyms and compatibility aliases include `Integer`, `Int3`, `Int4`, `MiddleInt`.| | ||
| | BigInt | Int64 | Supports unsigned. Compatibility alias: `Int8`.| |
Member
There was a problem hiding this comment.
not sure we need to give so much detail as to CH type aliases, clutters docs
Member
There was a problem hiding this comment.
Agreed, as long as users can easily match one with the other, it's all we need
…into chore/add-more-supported-mysql-types
Collaborator
|
@dtunikov - Pulled in main to fix the build errors. |
ilidemi
approved these changes
Jul 7, 2026
Comment on lines
+20
to
+23
| | TinyInt | Int8 | Supports unsigned. Compatibility alias: `Int1`.| | ||
| | SmallInt | Int16 | Supports unsigned. Compatibility alias: `Int2`.| | ||
| | MediumInt, Int | Int32 | Supports unsigned. Synonyms and compatibility aliases include `Integer`, `Int3`, `Int4`, `MiddleInt`.| | ||
| | BigInt | Int64 | Supports unsigned. Compatibility alias: `Int8`.| |
Member
There was a problem hiding this comment.
Agreed, as long as users can easily match one with the other, it's all we need
| | SmallInt | Int16 | Supports unsigned.| | ||
| | MediumInt, Int | Int32 | Supports unsigned.| | ||
| | BigInt | Int64 | Supports unsigned.| | ||
| | Decimal | Decimal | Synonyms: `Numeric`, `Dec`, `Fixed`.| |
Member
There was a problem hiding this comment.
Suggested change
| | Decimal | Decimal | Synonyms: `Numeric`, `Dec`, `Fixed`.| | |
| | Decimal | Decimal(76,38) | Values exceeding 38 integer digits are ingested as zero | |
| | JSON | String | MySQL only; MariaDB `json` is just an alias for `text` with a constraint. | | ||
| | Geometry & Geometry Types | String | WKT (Well-Known Text). WKT may suffer from small precision loss. | | ||
| | Geometry & Geometry Types | String | WKT (Well-Known Text). WKT may suffer from small precision loss. | | ||
| | UUID | UUID | MariaDB only. Columns added during CDC are added as `String`. | |
Member
There was a problem hiding this comment.
Should we mention it's a byte value? Usually string implies a readable string
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
add more supported MySQL/MariaDB types